import { TcResponse } from '../../../travelcloud'; import { NextPage } from 'next'; import { v2_GroupTour, v2_PrivateTour } from '../../../types'; declare const AnyTourPage: NextPage<{ anyTour: TcResponse; anyTourOptions: TcResponse; params: any; limits: any; }>; export declare function getStaticPaths(): Promise<{ paths: any[]; fallback: boolean; }>; export declare function getStaticProps(context: any): Promise<{ props: { anyTour: any; anyTourOptions: any; limits: any; params: any; }; revalidate: number; }>; export default AnyTourPage;